func strconv.appendQuotedWith
5 uses
strconv (current package)
quote.go#L24: return string(appendQuotedWith(make([]byte, 0, 3*len(s)/2), s, quote, ASCIIonly, graphicOnly))
quote.go#L31: func appendQuotedWith(buf []byte, s string, quote byte, ASCIIonly, graphicOnly bool) []byte {
quote.go#L135: return appendQuotedWith(dst, s, '"', false, false)
quote.go#L148: return appendQuotedWith(dst, s, '"', true, false)
quote.go#L162: return appendQuotedWith(dst, s, '"', false, true)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |